crypto/internal/fips140/hmac.HMAC.opad (field)

9 uses

	crypto/internal/fips140/hmac (current package)
		hmac.go#L31: 	opad, ipad   []byte
		hmac.go#L61: 		if err := h.outer.(marshalable).UnmarshalBinary(h.opad); err != nil {
		hmac.go#L66: 		h.outer.Write(h.opad)
		hmac.go#L118: 	h.outer.Write(h.opad)
		hmac.go#L126: 	h.opad = omarshal
		hmac.go#L150: 	hm.opad = make([]byte, blocksize)
		hmac.go#L157: 	copy(hm.opad, key)
		hmac.go#L161: 	for i := range hm.opad {
		hmac.go#L162: 		hm.opad[i] ^= 0x5c